home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-1.iso / Files / Internet / Web Things / HTML.edit 1.5b1.sit / HTML.edit.1.5b1 / HTML.edit v1.5b1 / HTML.edit v1.5b1.rsrc / TEXT_30902_The Minimal HTML Document.txt < prev    next >
Encoding:
Text File  |  1994-11-30  |  1.5 KB  |  34 lines

  1.  
  2. National Center for Supercomputing Applications
  3. A Beginner's Guide to HTML
  4.  
  5. The Minimal HTML Document
  6.  
  7. Here is a bare-bones example of HTML: 
  8.  
  9.     <TITLE>The simplest HTML example</TITLE>
  10.     <H1>This is a level-one heading</H1>
  11.     Welcome to the world of HTML. 
  12.     This is one paragraph.<P>
  13.     And this is a second.<P>
  14.  
  15. Click here to see the formatted version of the example. 
  16.  
  17. HTML uses markup tags to tell the Web browser how to display the text. The above example uses: 
  18.  
  19.   ‚Ä¢ the <TITLE> tag (and corresponding </TITLE> tag), which specifies the title of the document 
  20.   ‚Ä¢ the <H1> header tag (and corresponding </H1>) 
  21.   ‚Ä¢ the <P> paragraph-separator tag 
  22.  
  23. HTML tags consist of a left angle bracket (<), (a "less than" symbol to mathematicians), followed by name of the tag and closed by a right angular bracket (>). Tags are usually paired, e.g. <H1> and </H1>. The ending tag looks just like the starting tag except a slash (/) precedes the text within the brackets. In the example,  <H1> tells the Web browser to start formatting a level-one heading; </H1> tells the browser that the heading is complete.
  24.  
  25. The primary exception to the pairing rule is the <P> tag. There is no such thing as </P>. 
  26.  
  27. NOTE: HTML is not case sensitive. <title> is equivalent to <TITLE> or <TiTlE>. 
  28.  
  29. Not all tags are supported by all World Wide Web browsers. If a browser does not support a tag, it just ignores it. 
  30.  
  31. back to Creating HTML Documents
  32. on to Basic Markup Tags
  33. return to Beginner's Guide  Contents.
  34.